home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 6984 / 6984.xpi / defaults / preferences / prefs-lazarus.js
Text File  |  2009-11-24  |  3KB  |  83 lines

  1.  
  2. //lazarus version number, used for checking for new installs and updates
  3. pref("extensions.lazarus.version", "");
  4.  
  5. //should saved forms expire?
  6. pref("extensions.lazarus.expireSavedForms", false);
  7.  
  8. //keep saved forms for X minutes before removing them from the database
  9. pref("extensions.lazarus.expireSavedFormsInterval", 1);
  10. pref("extensions.lazarus.expireSavedFormsUnit", 10080);
  11.  
  12. //should we save/restore hidden fields
  13. pref("extensions.lazarus.saveHiddenFields", false);
  14.  
  15. //should we save/restore password fields
  16. pref("extensions.lazarus.savePasswordFields", false);
  17.  
  18. //should we save/restore search forms (GET forms containing a single textbox) 
  19. pref("extensions.lazarus.saveSearchForms", true);
  20.  
  21. //save current form if the user stops typing for X many milliseconds
  22. pref("extensions.lazarus.autoSaveInterval", 2000);
  23.  
  24. // See http://kb.mozillazine.org/Localize_extension_descriptions
  25. pref("extensions.lazarus@interclue.com.description", "chrome://lazarus/locale/lazarus.properties");
  26.  
  27. //maximum number of save points for a given form
  28. pref("extensions.lazarus.maxSavesPerForm", 8);
  29.  
  30. //maximum number of autosave points to show in the submenu for a given form
  31. pref("extensions.lazarus.maxAutosavesPerForm", 3);
  32.  
  33. //maximum number of items to show in the "restore text" submenu
  34. pref("extensions.lazarus.maxTextItemsInSubmenu", 20);
  35.  
  36. //should we clear saved forms when "Clearing Private Data"
  37. pref("extensions.lazarus.privacy.item.saved.forms", false);
  38.  
  39. //show the lazarus icon in the status bar
  40. pref("extensions.lazarus.showInStatusbar", true);
  41.  
  42. //show the lazarus icons in the context menu 
  43. pref("extensions.lazarus.showContextMenuIcons", true);
  44.  
  45. //Allows the user to play with Experimental parts of the program
  46. pref("extensions.lazarus.includeExperimental", false);
  47.  
  48. //use the first line of text from the saved form as the label of each submenuitem?
  49. //time of save will be used if this is false.
  50. pref("extensions.lazarus.showFormTextInSubMenu", true);
  51.  
  52. //last time we checked for updates
  53. pref("extensions.lazarus.checkForUpdates", true);
  54. pref("extensions.lazarus.checkForUpdatesBeta", false);
  55. pref("extensions.lazarus.lastUpdateCheck", 0);
  56.  
  57. //cleanup data on uninstall
  58. pref("extensions.lazarus.uninstall.removeUserSettings", false);
  59. pref("extensions.lazarus.uninstall.removeSavedForms", false);
  60.  
  61. //debugMode, shows debugging messages in the js console
  62. // 0 : None
  63. // 1 : Errors
  64. // 2 : Warnings
  65. // 3 : Messages
  66. // 4 : DebugMessages
  67. pref("extensions.lazarus.debugMode", 1);
  68.  
  69. //should we build a searchable full text index of saved text fields
  70. pref("extensions.lazarus.disableSearch", false);
  71.  
  72. //show a notification when a form is fully restored
  73. pref("extensions.lazarus.showDonateNotification", true);
  74.  
  75. //should Lazarus be enabled when in private browsing mode
  76. pref("extensions.lazarus.enableInPrivateBrowsingMode", false);
  77.  
  78. //should we run VACUUM on the database at startup (NOTE: tales ~10 seconds to clean a 30MB database!) not reccomended
  79. pref("extensions.lazarus.cleanDatabaseAtStartup", false);
  80.  
  81. //should we generate a backup of the database
  82. pref("extensions.lazarus.backupDatabase", true);
  83.